From: Julien Grall Date: Fri, 15 May 2015 15:17:41 +0000 (+0100) Subject: xen/arm: gic: Typo in comment in gic_remove_irq_from_guest X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3191 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=ed60a28e08a303a4f9ae35ff941820eaf459a31c;p=xen.git xen/arm: gic: Typo in comment in gic_remove_irq_from_guest Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c index f023e4f7b8..125298cf01 100644 --- a/xen/arch/arm/gic.c +++ b/xen/arch/arm/gic.c @@ -182,7 +182,7 @@ int gic_remove_irq_from_guest(struct domain *d, unsigned int virq, { desc->handler->shutdown(desc); - /* EOI the IRQ it it has not been done by the guest */ + /* EOI the IRQ if it has not been done by the guest */ if ( test_bit(_IRQ_INPROGRESS, &desc->status) ) gic_hw_ops->deactivate_irq(desc); clear_bit(_IRQ_INPROGRESS, &desc->status);